home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 65.zip / BS1 part 65 / Delitracker v1.21.adf / Rexx / dt_append.rexx next >
OS/2 REXX Batch file  |  1992-05-17  |  204b  |  19 lines

  1. /* DeliTracker - toggles append */
  2.  
  3. address 'rexx_DT'
  4.  
  5. options results
  6.  
  7.  
  8. status G app
  9.  
  10. if result == "0" then do
  11.     Append 1
  12.     say "Append is now on..."
  13. end
  14. else do
  15.     Append 0
  16.     say "Append is now off..."
  17. end
  18.  
  19.